JavaScript

{dialog.object}_listNavigateRecord Method

Syntax

{dialog.object}._listNavigateRecord(UXListName, direction)

Arguments

UXListNamestring

The name of the List Control to navigate.

directionstring

The direction to navigate. Can be one of the following values:

Direction
Description
first

Navigate to the first record in the List.

previous

Navigate to the previous record in the List.

next

Navigate to the next record in the List.

last

Navigate to the last record in the List.

Description

Navigates by record in the specified direction: first, previous, next, or last.

Discussion

The {dialog.object}._listNavigateRecord navigates to the next record in the specified direction. In a paginated List control, 'next' will navigate to the next page of records if the last row on the current List page is selected. Similarly, 'previous' will navigate to the previous page of records if the first row in the current List page is selected.

Example

{dialog.object}._listNavigateRecord('MYLIST1','next');